f3db80de52533a7bcc1728c297f8d6cc6d1f68da,mule/src/java/org/mule/impl/ImmutableMuleEndpoint.java,ImmutableMuleEndpoint,initFromDescriptor,#UMOImmutableEndpoint#,215
Before Change
this.name = source.getName();
}
if (this.endpointUri == null) {
this.endpointUri = source.getEndpointURI();
}
if (this.endpointEncoding == null) {
this.endpointEncoding = source.getEncoding();
After Change
}
if (this.endpointUri == null && source.getEndpointURI() != null) {
this.endpointUri = new MuleEndpointURI(source.getEndpointURI());
}
if (this.endpointEncoding == null) {